page.jsx 449 B

123456789101112131415161718
  1. import PlaceholderPage from "@/components/placeholders/PlaceholderPage";
  2. /**
  3. * /:branch/:year/:month/:day
  4. *
  5. * Next.js 15+ treats `params` as an async value (Promise) for dynamic routes.
  6. */
  7. export default async function BranchYearMonthDayPage({ params }) {
  8. const resolvedParams = await params;
  9. return (
  10. <PlaceholderPage
  11. title="Day"
  12. description="Day placeholder (future: file list + PDF viewer)."
  13. params={resolvedParams}
  14. />
  15. );
  16. }